home *** CD-ROM | disk | FTP | other *** search
/ Swimwear Illustrated / Swimwear Illustrated.iso / mac / MAIN8 / TINAMOV.DIR / 00009_Script_9 < prev    next >
Text File  |  1996-02-22  |  618b  |  27 lines

  1. on exitFrame
  2.   if not soundbusy(1) then
  3.     sound stop 1
  4.     sound playfile 1, "tina"
  5.   end if
  6.   if rollover(6) then
  7.     set the visible of sprite 10 to true
  8.   else
  9.     set the visible of sprite 10 to false
  10.   end if
  11.   if rollover(7) then
  12.     set the visible of sprite 11 to true
  13.   else
  14.     set the visible of sprite 11 to false
  15.   end if
  16.   if rollover(8) then
  17.     set the visible of sprite 12 to true
  18.   else
  19.     set the visible of sprite 12 to false
  20.   end if
  21.   if rollover(9) then
  22.     set the visible of sprite 13 to true
  23.   else
  24.     set the visible of sprite 13 to false
  25.   end if
  26.   go loop
  27. end